From 15c21da0d08269310cad7fb673499256492b49a6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 26 Jun 2002 08:35:14 +0000 Subject: [PATCH] (Fbury_buffer): Use frames_discard_buffer. --- src/buffer.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/buffer.c b/src/buffer.c index 6af8b39d3b5..65300cd9827 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1932,7 +1932,10 @@ selected window if it is displayed there. */) XSETCDR (link, Qnil); Vbuffer_alist = nconc2 (Vbuffer_alist, link); - frames_bury_buffer (buffer); + /* Removing BUFFER from frame-specific lists + has the effect of putting BUFFER at the end + of the combined list in each frame. */ + frames_discard_buffer (buffer); } return Qnil; -- 2.30.2